home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog16 < prev    next >
Text File  |  1995-06-29  |  285b  |  15 lines

  1. # testing selectionBox callback info
  2. xtAppInitialize -class Program
  3.  
  4. xmSelectionBox .selectionBox managed
  5. .selectionBox okCallback print_selectionBox
  6.  
  7. proc print_selectionBox {} {
  8.     .selectionBox getValues -textString c
  9.     puts stdout "Selection: $c"
  10. }
  11.  
  12. . realizeWidget
  13.  
  14. . mainLoop
  15.